home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 1992 August / info-mac-1992.iso / Applications (app) / Ray Tracer / README < prev    next >
Text File  |  1989-04-28  |  2KB  |  52 lines

  1. ***** A Hackers Guide to Tracer *****
  2. tracer consists of a bunch of files containing a program that does 
  3. ray tracing (No shit sherlock).
  4. Thes files are as follows:
  5. tracer.c:    main() sets up the initial rays and stores values
  6.         in a file. booboo prints an error message and quits.
  7. shade.c:    shade() calculates the intensity returned by a ray. It is
  8.          recursive, and also makes a call to refract().
  9. refract.c:    The most difficult part of the program. This file contains
  10.         refract(), inside(), refk() and getcapt().
  11.         and these do all the refraction calculations.
  12. find.c:        contains find(),findo() (for when a ray is inside a ball)
  13.         and shadow() and finds() for shadows.
  14. support.c:    supportive subroutines. right now only contains mt_vec
  15.         as all the others were either discarded or converted to 
  16.         macros.
  17. g_bal.c        g_bal() gets the ball data and points bl[] at them.
  18. g_bod.c        g_bod() loads the floor pattern into suzie.
  19.  
  20. macros.h    contains all the macro definitions. Definitely to be looked at.
  21. rtd.h        header file containing all the structure definitions.
  22. extern.h    keeps track of all global variables used through the program.
  23.  
  24. bdata.i        sample ball data file.
  25.  
  26. pat.def \
  27. check.pat\
  28. susie.pat >-    sample pattern files. (susie is not for the purient).
  29. ship.pat /
  30.  
  31. ******************************************************************
  32.  
  33. 28/4/89
  34. -------
  35. Code posted to comp.sources.misc or unix late last year. Author unknown.
  36. Port to the Mac by John Lim (jkjl@munnari.oz) , picture drawing code
  37. by Jason Castan (castan@munnari.oz). Programs require M68881 and Color
  38. QuickDraw to run. Source requires LSC 3.0 to compile.
  39.  
  40. New Files
  41. ---------
  42. drawit.c    Draws data found in data.dis on a Mac with colour QD.
  43.  
  44. Changes to code
  45. ---------------
  46. 1.    LSC 3.0 "unix main.c" file used. Sorry we cannot distribute it
  47.     for copyright reasons.
  48. 2.    Added support for background processing under MF.
  49. 3.    Changed all malloc(int) calls to malloc(long) calls.
  50. 4.    Added M68881 support (castan).
  51. 5.    Rewrote some of the expressions to generate (slightly) faster code
  52.     on the LSC NON-OPTIMIZING compiler (hint-hint THINK) !